home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / grabthegrub.swf / scripts / __Packages / StreetSpace.as < prev   
Text File  |  2007-10-01  |  652b  |  29 lines

  1. class StreetSpace extends MovieClip
  2. {
  3.    function StreetSpace(c, x, y, n, t, r, b, l)
  4.    {
  5.       super();
  6.       this.mcName = c;
  7.       this.xPos = x;
  8.       this.yPos = y;
  9.       this.tileNum = n;
  10.       this.fromLeft = l;
  11.       this.fromRight = r;
  12.       this.fromTop = t;
  13.       this.fromBottom = b;
  14.       this.mcName.lLine._visible = !l;
  15.       this.mcName.rLine._visible = !r;
  16.       this.mcName.tLine._visible = !t;
  17.       this.mcName.bLine._visible = !b;
  18.    }
  19.    function getMyInfo()
  20.    {
  21.       var _loc2_ = {};
  22.       for(var _loc3_ in this)
  23.       {
  24.          _loc2_[_loc3_] = this[_loc3_];
  25.       }
  26.       return _loc2_;
  27.    }
  28. }
  29.